home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 March
/
PCWorld_2002-03_cd.bin
/
Software
/
TemaCD
/
xteq
/
setup.exe
/
{app}
/
plugins
/
XQ CoolSwitch Enabled.xpl
< prev
next >
Wrap
Text File
|
2000-12-13
|
1KB
|
48 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Appearance\Interface\Cool Switch"
"NAME"="Cool Switch Disabled"
"VERSION"="1.34"
"LANGUAGE"="VBScript"
"TEXT 1"="Disable Cool Switch"
"DESCRIPTION 1"="If you press ALT+TAB, you perform a so called "Cool Switch"."
"DESCRIPTION 2"="If this option is enabled, the current user is no longer able to use Cool Switch."
"DESCRIPTION 3"="Note: It seems this setting has no effect if you are using IE 4.0 and above."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
sPath="HKEY_CURRENT_USER\Control Panel\Desktop\CoolSwitch"
Sub Plugin_Initialize
i=RegReadValue(sPath)
if IsEmpty(i)=false then
If i=0 then Call SetUIElement(1,true)
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sPath,"0",1)
else
Call RegWriteValue(sPath,"1",1)
end if
Restart
End Sub
Sub Plugin_Terminate
End Sub